home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap04 / b04a005.cc2 < prev    next >
Text File  |  1998-06-07  |  1KB  |  24 lines

  1. 0, Chapter 4 is the first of three chapters 
  2. 2, devoted exclusively to using program 
  3. 5, code--the statements, keywords, and 
  4. 8, programming structures that form the core of 
  5. 10, a Visual Basic application. First, you'll 
  6. 13, learn how to use variables to store 
  7. 15, important information in your program. 
  8. 18, Variables help you manage data in event 
  9. 20, procedures and are especially useful with 
  10. 22, two dialog box functions named InputBox 
  11. 26, and MsgBox. Next, you will learn how to 
  12. 29, use specific data types to fine-tune the 
  13. 32, size and content of your variables and 
  14. 35, streamline your calculations. The data 
  15. 37, types you'll learn about include Integer, 
  16. 40, single precision floating point, string, 
  17. 43, and variant. Finally, you'll learn how 
  18. 47, to use mathematical operators such as 
  19. 49, addition and multiplication to create 
  20. 51, formulas in your programs. With formulas, you 
  21. 55, can perform a number of useful tasks, 
  22. 57, including totaling a column of numbers or 
  23. 60, computing the sales tax for an item.
  24. 63, END